home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-11-17 | 959 b | 31 lines | [TEXT/CWIE] |
- // ===========================================================================
- // <CGI Starter Header>.h ©1995 Brian Todoroff All rights reserved.
- // ===========================================================================
-
- #pragma once
-
- #include "LCGIApplication.h"
-
-
- class CGIStarterApp : public LCGIApplication {
- public:
- CGIStarterApp(); // constructor registers all PPobs
- virtual ~CGIStarterApp(); // stub destructor
-
- // this overriding function performs application functions
-
- virtual Boolean ObeyCommand(CommandT inCommand, void* ioParam);
-
- // this overriding function returns the status of menu items
-
- virtual void FindCommandStatus(CommandT inCommand,
- Boolean &outEnabled, Boolean &outUsesMark,
- Char16 &outMark, Str255 outName);
-
- // This function responds to the CGI call
- virtual void HandleCGICall(CGIData &,LCHandleStream &);
-
- protected:
-
- virtual void StartUp(); // overriding startup functions
- };